runtime.hmap.oldbuckets (field)
29 uses
runtime (current package)
map.go#L127: oldbuckets unsafe.Pointer // previous bucket array of half the size, non-nil only when growing
map.go#L421: if c := h.oldbuckets; c != nil {
map.go#L482: if c := h.oldbuckets; c != nil {
map.go#L526: if c := h.oldbuckets; c != nil {
map.go#L896: b = (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
map.go#L1023: if oldBuckets := h.oldbuckets; oldBuckets != nil {
map.go#L1028: h.oldbuckets = nil
map.go#L1077: h.oldbuckets = oldbuckets
map.go#L1123: return h.oldbuckets != nil
map.go#L1157: b := (*bmap)(add(h.oldbuckets, bucket*uintptr(t.BucketSize)))
map.go#L1170: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
map.go#L1269: b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
map.go#L1296: h.oldbuckets = nil
map.go#L1538: if src.oldbuckets == nil {
map.go#L1543: srcOldbuckets := src.oldbuckets
map.go#L1627: b := (*bmap)(add(h.oldbuckets, uintptr(bucket)*uintptr(t.BucketSize)))
map.go#L1690: b := (*bmap)(add(h.oldbuckets, uintptr(bucket)*uintptr(t.BucketSize)))
map_fast32.go#L32: if c := h.oldbuckets; c != nil {
map_fast32.go#L72: if c := h.oldbuckets; c != nil {
map_fast32.go#L375: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
map_fast32.go#L450: b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
map_fast64.go#L32: if c := h.oldbuckets; c != nil {
map_fast64.go#L72: if c := h.oldbuckets; c != nil {
map_fast64.go#L377: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
map_fast64.go#L458: b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
map_faststr.go#L83: if c := h.oldbuckets; c != nil {
map_faststr.go#L178: if c := h.oldbuckets; c != nil {
map_faststr.go#L403: b := (*bmap)(add(h.oldbuckets, oldbucket*uintptr(t.BucketSize)))
map_faststr.go#L473: b := add(h.oldbuckets, oldbucket*uintptr(t.BucketSize))
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |